home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / AutoItSetOption.au3 < prev    next >
Text File  |  2006-06-17  |  2KB  |  37 lines

  1. ; copy any you want to change   ;default value is listed first
  2.  
  3. Opt("CaretCoordMode", 1)        ;1=absolute, 0=relative, 2=client
  4. Opt("ColorMode", 0)             ;0=RRGGBB color, 1=BBGGRR color
  5. Opt("ExpandEnvStrings", 0)      ;0=don't expand, 1=do expand
  6. Opt("ExpandVarStrings", 0)      ;0=don't expand, 1=do expand
  7. Opt("FtpBinaryMode", 1)         ;1=binary, 0=ASCII
  8. Opt("GUICloseOnESC", 1)         ;1=ESC  closes, 0=ESC won't close
  9. Opt("GUICoordMode", 1)          ;1=absolute, 0=relative, 2=cell
  10. Opt("GUIDataSeparatorChar","|")    ;"|" is the default
  11. Opt("GUIOnEventMode", 0)        ;0=disabled, 1=OnEvent mode enabled
  12. Opt("GUIResizeMode", 0)         ;0=no resizing, <1024 special resizing
  13. Opt("GUIEventOptions",0)    ;0=default, 1=just notification, 2=GuiCtrlRead tab index
  14. Opt("MouseClickDelay", 10)      ;10 milliseconds
  15. Opt("MouseClickDownDelay", 10)  ;10 milliseconds
  16. Opt("MouseClickDragDelay", 250) ;250 milliseconds
  17. Opt("MouseCoordMode", 1)        ;1=absolute, 0=relative, 2=client
  18. Opt("MustDeclareVars", 0)       ;0=no, 1=require pre-declare
  19. Opt("OnExitFunc","OnAutoItExit");"OnAutoItExit" called
  20. Opt("PixelCoordMode", 1)        ;1=absolute, 0=relative, 2=client
  21. Opt("RunErrorsFatal", 1)        ;1=fatal, 0=silent set @error
  22. Opt("SendAttachMode", 0)        ;0=don't attach, 1=do attach
  23. Opt("SendCapslockMode", 1)      ;1=store and restore, 0=don't
  24. Opt("SendKeyDelay", 5)          ;5 milliseconds
  25. Opt("SendKeyDownDelay", 1)      ;1 millisecond
  26. Opt("TCPTimeout",100)            ;100 milliseconds
  27. Opt("TrayAutoPause",1)            ;0=no pause, 1=Pause
  28. Opt("TrayIconDebug", 0)         ;0=no info, 1=debug line info
  29. Opt("TrayIconHide", 0)          ;0=show, 1=hide tray icon
  30. Opt("TrayMenuMode",0)            ;0=append, 1=no default menu, 2=no automatic check, 4=menuitemID  not return
  31. Opt("TrayOnEventMode",0)        ;0=disable, 1=enable
  32. Opt("WinDetectHiddenText", 0)   ;0=don't detect, 1=do detect
  33. Opt("WinSearchChildren", 1)     ;0=no, 1=search children also
  34. Opt("WinTextMatchMode", 1)      ;1=complete, 2=quick
  35. Opt("WinTitleMatchMode", 1)     ;1=start, 2=subStr, 3=exact, 4=advanced
  36. Opt("WinWaitDelay", 250)        ;250 milliseconds
  37.